diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-11-06 02:49:32 -0500 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-11-06 02:49:32 -0500 |
commit | 498ac6e7e9a2cda0f0a7e8dcc4cb69fec33a37b8 (patch) | |
tree | ee7133bba89cad12bc4fff3ff068ccc6c33a8afd | |
parent | Show :LOGBOOK: items in org-agenda view (diff) | |
download | mmosmacs-498ac6e7e9a2cda0f0a7e8dcc4cb69fec33a37b8.tar.gz mmosmacs-498ac6e7e9a2cda0f0a7e8dcc4cb69fec33a37b8.tar.bz2 mmosmacs-498ac6e7e9a2cda0f0a7e8dcc4cb69fec33a37b8.zip |
Dim inactive buffers
-rw-r--r-- | early-init.el | 2 | ||||
-rw-r--r-- | init.el | 18 |
2 files changed, 19 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index a008338..534fe07 100644 --- a/early-init.el +++ b/early-init.el | |||
@@ -78,7 +78,7 @@ | |||
78 | ;; damage | 78 | ;; damage |
79 | ;; --------------------------------- | 79 | ;; --------------------------------- |
80 | 80 | ||
81 | (set-face-attribute 'default nil :background "#000000" :foreground "#c6a57b") | 81 | (set-face-attribute 'default nil :background "#0a0a0a" :foreground "#c6a57b") |
82 | 82 | ||
83 | 83 | ||
84 | 84 | ||
@@ -397,6 +397,24 @@ | |||
397 | 397 | ||
398 | 398 | ||
399 | ;; --------------------------------- | 399 | ;; --------------------------------- |
400 | ;; ADHD Accessibility | ||
401 | ;; ------------------ | ||
402 | ;; I have ADHD, real bad. All this | ||
403 | ;; *shit* going on in Emacs can be | ||
404 | ;; detrimental to my attention. | ||
405 | ;; | ||
406 | ;; Make it easier to focus... | ||
407 | ;; --------------------------------- | ||
408 | |||
409 | (use-package auto-dim-other-buffers | ||
410 | :straight t | ||
411 | :config (setq auto-dim-other-buffers-dim-on-focus-out t | ||
412 | auto-dim-other-buffers-dim-on-switch-to-minibuffer t)) | ||
413 | (set-face-attribute 'auto-dim-other-buffers-face nil :background "#000") | ||
414 | (set-face-attribute 'auto-dim-other-buffers-hide-face nil :background "#000" :foreground "#000") | ||
415 | |||
416 | |||
417 | ;; --------------------------------- | ||
400 | ;; Hide text for privacy | 418 | ;; Hide text for privacy |
401 | ;; --------------------- | 419 | ;; --------------------- |
402 | ;; Sometimes you just don't want | 420 | ;; Sometimes you just don't want |